home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM 1995 Fall / PD-ROM F95.toast / Programming / Programming Languages / Harvest C ƒ / MPW Int & Lib / Interfaces / Strings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-17  |  589 b   |  33 lines  |  [TEXT/ttxt]

  1. /************************************************************
  2.  
  3. Created: Thursday, September 7, 1989 at 7:47 PM
  4.     Strings.h
  5.     C Interface to the Macintosh Libraries
  6.  
  7.  
  8.     Copyright Apple Computer, Inc.    1985-1989
  9.     All rights reserved
  10.  
  11. ************************************************************/
  12.  
  13.  
  14. #ifndef __STRINGS__
  15. #define __STRINGS__
  16.  
  17. #ifndef __TYPES__
  18. #include <Types.h>
  19. #endif
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. StringPtr c2pstr(char *aStr);
  25. pascal StringPtr C2PStr(Ptr cString);
  26. char *p2cstr(StringPtr aStr);
  27. pascal Ptr P2CStr(StringPtr pString);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31.  
  32. #endif
  33.